home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / Fruity / STRINGTG.DXR / 00007_JumpingGuyManager.ls < prev    next >
Encoding:
Text File  |  1998-04-13  |  5.7 KB  |  204 lines

  1. property pJGuyList, pJGuyCounter, pLastJGuyTime, pJGuyIntervalTime, pGuyAnimFlag, pJumpMember, pFRopeMember, pFJRopeMember, pFFlyMember, pLandMember, pGuyChan, pButtonChan, pButtonMem, pStringChan
  2. global gGusherObj, gStringObj, gBlank, gInitPoint
  3.  
  4. on new me
  5.   set pJGuyList to [41, 42, 43]
  6.   set pJGuyCounter to 1
  7.   set pLastJGuyTime to the timer
  8.   set pJGuyIntervalTime to 12
  9.   set pGuyAnimFlag to 1
  10.   set pJumpMember to 44
  11.   set pFRopeMember to 45
  12.   set pFFlyMember to 52
  13.   set pLandMember to 66
  14.   set pGuyChan to 9
  15.   set pButtonChan to 6
  16.   set pButtonMem to 30
  17.   set pStringChan to the pStringChan of gStringObj
  18.   set pFJRopeMember to 33
  19.   return me
  20. end
  21.  
  22. on mUpdateGuy me
  23.   if not pGuyAnimFlag then
  24.     exit
  25.   end if
  26.   if the timer < (pLastJGuyTime + pJGuyIntervalTime) then
  27.     exit
  28.   end if
  29.   set the castNum of sprite pGuyChan to getAt(pJGuyList, pJGuyCounter)
  30.   set pJGuyCounter to pJGuyCounter + 1
  31.   if pJGuyCounter = (count(pJGuyList) + 1) then
  32.     set pJGuyCounter to 1
  33.   end if
  34.   set pLastJGuyTime to the timer
  35. end
  36.  
  37. on mSwing me
  38.   set the memberNum of sprite pButtonChan to pButtonMem + 1
  39.   puppetSnd(1, "Jump")
  40.   set the memberNum of sprite pGuyChan to pJumpMember
  41.   updateStage()
  42.   sinSlideUnder(pGuyChan, 200, 164, 9, 7)
  43.   set the memberNum of sprite pGuyChan to gBlank
  44.   set the loc of sprite pGuyChan to gInitPoint
  45.   set the memberNum of sprite pStringChan to pFRopeMember + 3
  46.   updateStage()
  47.   puppetSnd(1, "Swing")
  48.   set forward to 1
  49.   set i to 4
  50.   repeat while the mouseDown
  51.     set theTime to the timer + 6
  52.     if forward then
  53.       set i to i + 1
  54.       set the memberNum of sprite pStringChan to pFRopeMember + i - 1
  55.       updateStage()
  56.       if i = 7 then
  57.         set forward to 0
  58.       end if
  59.       repeat while the timer < theTime
  60.         if not (the mouseDown) then
  61.           exit repeat
  62.         end if
  63.       end repeat
  64.       next repeat
  65.     end if
  66.     set i to i - 1
  67.     set the memberNum of sprite pStringChan to pFRopeMember + i - 1
  68.     updateStage()
  69.     if i = 1 then
  70.       set forward to 1
  71.     end if
  72.     repeat while the timer < theTime
  73.       if not (the mouseDown) then
  74.         exit repeat
  75.       end if
  76.     end repeat
  77.   end repeat
  78.   sound stop 1
  79.   set the memberNum of sprite pButtonChan to pButtonMem
  80.   set theTime to the timer + 7
  81.   set the memberNum of sprite pStringChan to pFJRopeMember + i - 1
  82.   set the memberNum of sprite pGuyChan to (2 * (i - 1)) + pFFlyMember
  83.   set the loc of sprite pGuyChan to getAt([point(118, 54), point(135, 98), point(196, 155), point(259, 177), point(335, 165), point(402, 116), point(422, 84)], i)
  84.   UStage(theTime)
  85.   puppetSnd(1, "fall")
  86.   if i = 7 then
  87.     set forward to 1
  88.   end if
  89.   if i = 1 then
  90.     set forward to 0
  91.   end if
  92.   mJumpOff(me, i, forward)
  93.   mLose(me)
  94. end
  95.  
  96. on mJumpOff me, index, forward
  97.   if forward then
  98.     set ├╕ to PI * getAt([1.69999999999999996, 1.75, 1.83000000000000007, 0, 0.20000000000000001, 0.25, 0.29999999999999999], index)
  99.   else
  100.     set ├╕ to PI * getAt([0.69999999999999996, 0.75, 0.82999999999999996, 1, 1.15999999999999992, 1.25, 1.30000000000000004], index)
  101.   end if
  102.   set vo to 50
  103.   set g to 8
  104.   set xo to the locH of sprite pGuyChan
  105.   set yo to the locV of sprite pGuyChan
  106.   set t to 1
  107.   set downflag to 0
  108.   set iIndex to index
  109.   set stringRestoreInt to 9
  110.   set lastTime to the timer
  111.   repeat while the locV of sprite pGuyChan < 360
  112.     set theTime to the timer + 6
  113.     set oldY to the locV of sprite pGuyChan
  114.     set newX to xo + (vo * cos(├╕) * t)
  115.     set newY to yo - ((vo * sin(├╕) * t) - (g * power(t, 2)))
  116.     if (newY > oldY) and not downflag then
  117.       set the memberNum of sprite pGuyChan to the memberNum of sprite pGuyChan + 1
  118.       set downflag to 1
  119.     end if
  120.     set the locH of sprite pGuyChan to newX
  121.     set the locV of sprite pGuyChan to newY
  122.     set t to t + 1
  123.     if iIndex < 4 then
  124.       if the timer > (lastTime + stringRestoreInt) then
  125.         set iIndex to iIndex + 1
  126.         set the memberNum of sprite pStringChan to pFJRopeMember + iIndex - 1
  127.         set lastTime to the timer
  128.       end if
  129.     else
  130.       if iIndex > 4 then
  131.         if the timer > (lastTime + stringRestoreInt) then
  132.           set iIndex to iIndex - 1
  133.           set the memberNum of sprite pStringChan to pFJRopeMember + iIndex - 1
  134.           set lastTime to the timer
  135.         end if
  136.       end if
  137.     end if
  138.     UStage(theTime)
  139.     if mLandOnBranch(me) then
  140.       abort()
  141.     end if
  142.   end repeat
  143.   repeat while soundBusy(1)
  144.     if iIndex < 4 then
  145.       if the timer > (lastTime + stringRestoreInt) then
  146.         set iIndex to iIndex + 1
  147.         set the memberNum of sprite pStringChan to pFJRopeMember + iIndex - 1
  148.         set lastTime to the timer
  149.       end if
  150.     else
  151.       if iIndex > 4 then
  152.         if the timer > (lastTime + stringRestoreInt) then
  153.           set iIndex to iIndex - 1
  154.           set the memberNum of sprite pStringChan to pFJRopeMember + iIndex - 1
  155.           set lastTime to the timer
  156.         end if
  157.       end if
  158.     end if
  159.     updateStage()
  160.   end repeat
  161. end
  162.  
  163. on mLose me
  164.   resetGame()
  165. end
  166.  
  167. on mLandOnBranch me
  168.   if inside(the loc of sprite pGuyChan, rect(437, 134, 478, 168)) then
  169.     mWin(me)
  170.     return 1
  171.   else
  172.     return 0
  173.   end if
  174. end
  175.  
  176. on mWin me
  177.   set the memberNum of sprite pGuyChan to pLandMember
  178.   set the loc of sprite pGuyChan to point(458, 150)
  179.   puppetSnd(1, "Land")
  180.   updateStage()
  181.   repeat while soundBusy(1)
  182.   end repeat
  183.   puppetSnd(1, "win")
  184.   updateStage()
  185.   repeat while soundBusy(1)
  186.     repeat with offset = 1 to 4
  187.       set theTime to the timer + 10
  188.       set the memberNum of sprite pGuyChan to pLandMember + offset - 1
  189.       UStage(theTime)
  190.       if not soundBusy(1) then
  191.         exit repeat
  192.       end if
  193.     end repeat
  194.   end repeat
  195.   if IsShockWave() then
  196.     gotoNetPage("../trophy.html")
  197.   else
  198.     puppetSprite(6, 0)
  199.     puppetSprite(8, 0)
  200.     puppetSprite(9, 0)
  201.     go("payoff")
  202.   end if
  203. end
  204.